home *** CD-ROM | disk | FTP | other *** search
/ PD ROM 1 / PD ROM Volume I - Macintosh Software from BMUG (1988).iso / Programming / Complete Applications / Othello C Source / doflips.c < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-25  |  1.0 KB  |  48 lines  |  [TEXT/ttxt]

  1. /* doflips.c - DoFlips */
  2.  
  3. #include "mac/quickdraw.h"
  4. #include "mac/osintf.h"
  5. #include "mac/toolintf.h"
  6. #include "othello.h"
  7.  
  8.  
  9.  
  10. DoFlips(color, move, board, flips, visible)
  11. int    color;
  12. MoveRecord    move;
  13. BoardArray    board;
  14. MoveList    flips;
  15. int        visible;
  16. {
  17.     register int    drow, dcol;
  18.     register int    frow, fcol, nFlips;
  19.     int        ticks;
  20.  
  21.     ticks = TickCount();
  22.     nFlips = 0;
  23.     for (drow = -1; drow <= 1; ++drow)
  24.         for (dcol = -1; dcol <= 1; ++dcol) {
  25.         for (frow = move.row + drow, fcol = move.col + dcol;
  26.             (board[frow][fcol] & stoneColor) ==
  27.                 opposite(color);
  28.             frow += drow, fcol += dcol)
  29.             ;
  30.         if ((board[frow][fcol] & stoneColor) != color)
  31.             continue;
  32.         for (frow -= drow, fcol -= dcol;
  33.                 !(frow == move.row && fcol == move.col);
  34.                 frow -= drow, fcol -= dcol) {
  35.             flips[nFlips].row = frow;
  36.             flips[nFlips].col = fcol;
  37.             if (visible || trace > 1)
  38.                 PlaceStone(frow, fcol, color);
  39.             else
  40.                 board[frow][fcol] = color;
  41.             board[frow][fcol] |= flipped;
  42.             ++nFlips;
  43.         }
  44.         }
  45.     nTicks[pDoFlips] += TickCount() - ticks;
  46.     return(nFlips);
  47. }
  48.